home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / host / hostInt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-07-18  |  904 b   |  33 lines

  1. /*
  2.  * hostInt.h --
  3.  *
  4.  *    Declarations used internally by the "Host_" procedures.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: hostInt.h,v 1.1 88/06/30 11:07:12 ouster Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _HOSTINT
  19. #define _HOSTINT
  20.  
  21. #ifndef _STDIO
  22. #include <stdio.h>
  23. #endif
  24.  
  25. /*
  26.  * Information about the current database file:
  27.  */
  28.  
  29. extern FILE *hostFile;        /* Non-zero?  Then it points to an open file. */
  30. extern char *hostFileName;    /* Name of database file to use. */
  31.  
  32. #endif _HOSTINT
  33.